home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 May: Tool Chest / Developer CD Series Tool Chest (Apple Computer)(May 1999).iso / Tool Chest / Development Kits / MPW etc / MPW-GM / MPW / Examples / PPCExamples / CPlusExamples / CPlusTESample / PPCApp.r < prev    next >
Encoding:
Text File  |  1998-12-03  |  1.0 KB  |  29 lines  |  [TEXT/MPS ]

  1. /*
  2.  *    File:        PPCApp.r
  3.  *
  4.  *    Contains:    Resource declaration for cfrg resource required for Power Macintosh
  5.  *              applications.
  6.  *
  7.  *                Copyright © 1994 by Apple Computer, Inc.  All rights reserved. 
  8.  *
  9.  */
  10.  
  11. #include "CodeFragmentTypes.r"
  12.  
  13. resource 'cfrg' (0) {
  14.    {
  15.       kPowerPC,                /* Target machine's Architecture. */
  16.       kFullLib,                /* This is not an update. */
  17.       kNoVersionNum,        /* Current version. */
  18.       kNoVersionNum,        /* Definition version. */
  19.       kDefaultStackSize,    /* Stack size of application. */
  20.       kNoAppSubFolder,        /* Not used here.  Can be the resource-id of an 'alis'
  21.                                resource.  Used to provide additional location
  22.                                to search for libraries. */
  23.       kIsApp,                /* This is an application (not a lib or drop-in). */
  24.       kOnDiskFlat,          /* This code fragment is on disk, in the data fork. */
  25.       kZeroOffset,            /* Offset of code into data fork. */
  26.       kWholeFork,           /* Code takes up all of data fork (can give a size). */
  27.       "CPlusTESample"       /* Name of application. */
  28.    }
  29. };